From: Jim Blandy Date: Wed, 19 May 1993 04:38:28 +0000 (+0000) Subject: * process.c [__sgi] (allocate_pty): Give up immediately if pty is X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96173 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=fad97cbed645ccc167265f38fb92bc8e03cc63ad;p=emacs.git * process.c [__sgi] (allocate_pty): Give up immediately if pty is inaccessible. --- diff --git a/src/process.c b/src/process.c index f383c95511a..17a0ca6a7ca 100644 --- a/src/process.c +++ b/src/process.c @@ -444,7 +444,7 @@ allocate_pty () if (access (pty_name, 6) != 0) { close (fd); -#ifndef IRIS +#if !defined(IRIS) && !defined(__sgi) continue; #else return -1;